home *** CD-ROM | disk | FTP | other *** search
/ Apple WWDC 1996 / WWDC96_1996 (CD).toast / Technology Materials / QuickTime VR / MacOS / QuickDraw™ 3D 1.0.6F4 SDK / Samples / SampleCode / Unsupported Libraries / CustomIO_Lib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-05  |  428 b   |  28 lines  |  [TEXT/MPS ]

  1. /*
  2.  * CustomIO_Lib.h
  3.  */
  4. #include "QD3D.h"
  5.  
  6. #ifdef __cplusplus
  7. extern "C" {
  8. #endif  /* __cplusplus */
  9.  
  10. TQ3Status CustomAttribute_Register(
  11.     void);
  12.  
  13. TQ3Status CustomAttribute_Unregister(
  14.     void);
  15.  
  16.  
  17. #define kCustomAttributeType    ((TQ3AttributeType) 0xF00DF00D)
  18.  
  19. typedef struct CustomAttributeRecord {
  20.     TQ3DisplayGroupObject    clickModel;
  21.     TQ3Boolean                isOn;        
  22. } CustomAttributeRecord;
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif    /* __cplusplus */
  27.  
  28.